home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_gen / jav503.zip / CLIENT.JAV < prev    next >
Text File  |  1996-05-01  |  599b  |  55 lines

  1. // -[KeepHeading]-
  2.  
  3.  
  4. // -[Copyright]-
  5.  
  6. /**
  7.  * 
  8.  */
  9. import java.lang.*;
  10.  
  11.  
  12. // -[KeepBeforeClass]-
  13.  
  14.  
  15. // -[Class]-
  16.  
  17. /**
  18.  * @jTitle           Client
  19.  * @jAuthor          Chris Colman
  20.  * @jOverridability  can be overridden
  21.  * @jDescription
  22.  * A person who can hire a video.
  23.  * 
  24.  * @see              Person
  25.  */
  26. public 
  27. class Client extends Person
  28. {
  29. // -[KeepWithinClass]-
  30.  
  31.  
  32. // -[Fields]-
  33.  
  34.  
  35.  
  36. /**
  37.  * NoDesc
  38.  */
  39. protected int memberId;
  40.  
  41.  
  42. // -[Methods]-
  43.  
  44. /**
  45.  * Describe here
  46.  */
  47. public void hireVideo()
  48. {
  49.     // Store the videoId against this person.
  50. }
  51.  
  52. }
  53.  
  54.  
  55.